/* Allow Funnelkit shopping cart on checkout page. Copy and Paste this file into a (PHP FILE) snippet */
add_filter( 'fkcart_is_cart_enabled', function ( $status ) {
	if ( is_checkout() ) {
		$status = true; 
	}

	return $status;
} );